home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / html / Makefile
Makefile  |  1997-08-18  |  245b  |  19 lines

  1. #
  2. # Makefile to create all the HTML source code, both for the CD and for
  3. # the on-line version
  4.  
  5. all: cd www
  6.  
  7. clean:
  8.     (cd cdrom; make clean)
  9.     (cd web; make clean)
  10.  
  11. cd:
  12.     (cd cdrom; make)
  13.  
  14. www:
  15.     (cd web; make)
  16.  
  17. install: www
  18.     (cd web; make install)
  19.